home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Solitaire / Sources / FortyThieves / FTAlertPanel.h < prev    next >
Encoding:
Text File  |  1994-04-17  |  592 b   |  36 lines

  1. /* AlertPanel.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9.  
  10. #import <appkit/appkit.h>
  11.  
  12. // A subclass of Panel having all the usual UI pieces that we expect.
  13. @interface FTAlertPanel:Panel
  14. {
  15.     id alert;
  16.     id first;
  17.     id iconButton;
  18.     id message;
  19.     id second;
  20.     id third;
  21.  
  22.     int lastResult;
  23. }
  24.  
  25. - buttonPressed:sender;
  26. - (int)lastResult;
  27. - run:sender;
  28. - alert;
  29. - first;
  30. - iconButton;
  31. - message;
  32. - second;
  33. - third;
  34.  
  35. @end
  36.